home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2000 July & August / EPA005.iso / Wersje testowe / NetOp6.5 / For Windows / w65e-500.exe / data1.cab / Script_English / Example1.dws next >
Text File  |  2000-04-04  |  845b  |  31 lines

  1. ;Collect Spreadsheet Reports Every Midnight
  2. ;*************************
  3. Script
  4. SET Copy=G_H
  5. SET Compression=High
  6. SET Delta=Yes
  7. SET CrashRecovery=Yes
  8. SET OverwriteExisting=Yes
  9. SET OverwriteSystem=Yes
  10. SET OverwriteReadOnly=Yes
  11. SET OverwriteHidden=Yes
  12. SET OnComError=2
  13. SET OnError=2
  14. SET AtEnd=None
  15. SET LogAppend=Yes
  16. SET Log="Collect Reports.log"
  17.  
  18. WAIT 00:00:00
  19.  
  20. CALL D:\NETOP\V60\phbook\CC2.ncf
  21. RUN "cmd /c dir c:\reports\*.xls > c:\reports\frankfurt.txt" /Timeout=120
  22. COPY c:\reports\*.* c:\reports\*.* /Copy=H_G
  23. CallEnd
  24.  
  25. CALL "D:\NETOP\V60\phbook\221; TULIP.ncf"
  26. RUN "cmd /c dir c:\reports\*.xls > c:\reports\amsterdam.txt" /Timeout=60
  27. COPY c:\reports\*.* c:\reports\*.* /Copy=H_G
  28. CallEnd
  29. RUN "cmd /k color 2e && date/t && time /t && dir /w  c:\reports\*.xls && dir /w  c:\reports\*.txt" /Guest /Timeout=60
  30. ScriptEnd
  31.